ループ内のcontinue
static int code = 0;
void funcWhileIfContinue (void)
{
while (code > 0)
{
if (code == 3)
{
continue;
}
--code;
}
if (code == 0)
{
code++;
}
}
continue文は、プログラムを whileループの先頭にジャンプバックさせます。